home *** CD-ROM | disk | FTP | other *** search
/ Visual Basic Controls / Visual Basic Controls.iso / vbcontrol / encrypt / encrypt.txt < prev    next >
Encoding:
Text File  |  1999-04-13  |  2.5 KB  |  78 lines

  1. Encryption Utilities v1.0, Demo Version
  2. Copyright (C) 1998 Yuri Software 
  3. All Rights Reserved
  4. http://www.yurisw.com
  5.  
  6.  
  7. DEMONSTRATION VERSION
  8.  
  9. This demonstration version of the product expires on August 1, 1999. 
  10. Please contact Yuri Software at http://www.yurisw.com to obtain a retail 
  11. version of the product.
  12.  
  13.  
  14. SUMMARY
  15.  
  16. Encryption Utilities library provides the MD5 and MD4 digest algorithms 
  17. in a COM component. The interface can be called from any environment 
  18. that supports COM components, such as ASP, VB, VC, and so on.
  19.  
  20. The library supplies classes EncryptionUtilities.MD5 and 
  21. EncryptionUtilities.MD4 with the single method Encrypt. Method Encrypt 
  22. takes a string as an argument and return a 32-character text 
  23. representation of the MD5 or MD4 hash of that string.
  24.  
  25. Function Encrypt(bsIn As String) As String
  26.     Member of EncryptionUtilities.MD5
  27.     Calculates the MD5 digest of the ASCII string. Returns the digest 
  28. in the textual form as a hex string of 32 characters.
  29.  
  30. Please refer to the supplied sample code for example of component use 
  31. in ASP, VB and VC.
  32.  
  33.  
  34. INSTALLATION
  35.  
  36. Copy the files into a directory on the hard disk and execute 
  37. install.bat. To uninstall the component, execute uninstall.bat.
  38.  
  39.  
  40. SOURCE CODE AVAILABILITY
  41.  
  42. If you plan to incorporate the Encryption Utilities library into a 
  43. mission critical application, you may want to consider licensing its 
  44. source code from Yuri Software. Please contact us at http://www.yurisw.com 
  45. for pricing and availability.
  46.  
  47.  
  48. ACKNOLEGEMENTS
  49.  
  50. The MD5 functionality of the Encryption Utilities library is based on 
  51. the MD5 Message Digest Algorithm by RSA Data Security, Inc.
  52.  
  53.  
  54.  
  55. LICENSE
  56.  
  57. You are hereby granted the license to use the enclosed Encryption 
  58. Utilities software library in the binary form. The sample source code 
  59. provided with the library can be used to develop custom applications 
  60. with or without modifications.
  61.  
  62.  
  63. DISCLAIMER
  64.  
  65. THIS SOFTWARE AND ALL THE ACCOMPANYING FILES ARE PROVIDED "AS IS" AND 
  66. WITHOUT ANY WARRANTIES EXPRESSED OR IMPLIED INCLUDING BUT NOT LIMITED 
  67. TO IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR 
  68. PURPOSE. 
  69.  
  70. ANY LIABILITY OF YURI SOFTWARE WILL BE LIMITED EXCLUSIVELY TO PRODUCT 
  71. REPLACEMENT OR REFUND OF THE PRODUCT PURCHASE PRICE. IN NO EVENT SHALL 
  72. YURI SOFTWARE BE LIABLE FOR ANY DAMAGES WHATSOEVER (INCLUDING WITHOUT 
  73. LIMITATION, DAMAGES FOR LOSS OF BUSINESS PROFITS, BUSINESS 
  74. INTERRUPTION, LOSS OF BUSINESS INFORMATION, OR ANY OTHER PECUNIARY 
  75. LOSS) ARISING OUT OF THE USE OR INABILITY TO USE THIS PRODUCT.
  76.  
  77.  
  78.